11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
// ponytail: single-page pixel game, no framework plugin needed.
|
|
export default defineConfig({
|
|
base: './',
|
|
build: {
|
|
target: 'es2020',
|
|
assetsInlineLimit: 0, // keep pixel PNGs & map JSON as real files
|
|
},
|
|
});
|