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.
30 lines
742 B
JavaScript
30 lines
742 B
JavaScript
import { defineConfig } from 'vite';
|
|
import { resolve } from 'path';
|
|
|
|
export default defineConfig({
|
|
root: resolve(__dirname, 'src'),
|
|
base: './',
|
|
build: {
|
|
outDir: resolve(__dirname, 'dist'),
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, 'src/index.html'),
|
|
},
|
|
output: {
|
|
entryFileNames: 'script.[hash].js',
|
|
chunkFileNames: 'chunk.[hash].js',
|
|
assetFileNames: '[name].[hash].[ext]',
|
|
},
|
|
},
|
|
minify: 'esbuild',
|
|
},
|
|
css: {
|
|
postcss: {
|
|
plugins: [
|
|
require('tailwindcss'),
|
|
require('autoprefixer'),
|
|
],
|
|
},
|
|
},
|
|
});
|