You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
6 months ago
|
import { defineConfig } from 'vite'
|
||
|
import solidPlugin from 'vite-plugin-solid'
|
||
|
// import devtools from 'solid-devtools/vite';
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
// devtools(),
|
||
|
solidPlugin(),
|
||
|
],
|
||
|
server: {
|
||
|
port: 3000,
|
||
|
},
|
||
|
build: {
|
||
|
target: 'esnext',
|
||
|
},
|
||
|
})
|