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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
webserial/vite.config.js

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'),
],
},
},
});