05/18/2026 Catchup - linksync project work and TicTacToe evaluations on different coding LLMs with OpenCode.
This commit is contained in:
20
TicTacToe/TicTacGaming/vite.config.ts
Normal file
20
TicTacToe/TicTacGaming/vite.config.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import path from 'path'
|
||||
import { defineConfig } from 'vite'
|
||||
|
||||
const config = defineConfig({
|
||||
base: './',
|
||||
resolve: {
|
||||
alias: {
|
||||
'@/game': path.resolve('src', 'game.ts'),
|
||||
'@/ui': path.resolve('src', 'ui.ts')
|
||||
}},
|
||||
build: {
|
||||
outDir: 'dist',
|
||||
emptyOutDir: true,
|
||||
rollupOptions: {
|
||||
input: { main: './index.html' },
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
export default config
|
||||
Reference in New Issue
Block a user