current and cache history

This commit is contained in:
caranicas
2022-09-18 15:19:31 -04:00
parent bad015de9a
commit c7b89a1126
12 changed files with 278 additions and 169 deletions

View File

@@ -2,14 +2,28 @@ import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
import path from "path";
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
// TODO figure out why vs code complains about this even though it works
"@stores": path.resolve(__dirname, "./src/stores"),
// TODO - add more aliases
},
},
plugins: [
react(),
vanillaExtractPlugin({
// configuration
}),
],
server: {
port: 9001,
},