mirror of
https://github.com/NotAShelf/nix-evaluator-stats.git
synced 2026-04-12 14:27:41 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Id40b5f5ccb55a8a1ea2793192a38f0256a6a6964
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',
|
|
},
|
|
});
|