mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 16:44:19 +01:00
18 lines
326 B
JavaScript
18 lines
326 B
JavaScript
import { resolve } from 'path';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, 'promise-default.ts'),
|
|
},
|
|
output: {
|
|
dir: 'bundle',
|
|
entryFileNames: '[name].js',
|
|
}
|
|
},
|
|
},
|
|
});
|