mirror of
https://github.com/NotAShelf/nix-evaluator-stats.git
synced 2026-04-12 06:17:43 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ieedfca23ce8b2b52ebae5b81095973056a6a6964
15 lines
320 B
TypeScript
15 lines
320 B
TypeScript
import { defineConfig } from 'vite';
|
|
import solidPlugin from 'vite-plugin-solid';
|
|
|
|
export default defineConfig({
|
|
plugins: [solidPlugin()],
|
|
base: process.env.GITHUB_PAGES ? '/nix-evaluator-stats/' : './',
|
|
server: {
|
|
port: 3000,
|
|
open: false,
|
|
},
|
|
build: {
|
|
target: 'esnext',
|
|
outDir: 'dist',
|
|
},
|
|
});
|