chore: add remix-development-tools to bolt.new

This commit is contained in:
Alem Tuzlak 2024-10-08 17:08:23 +02:00
parent ffa9f11360
commit 38f8602828
3 changed files with 1173 additions and 9 deletions

View File

@ -87,6 +87,7 @@
"is-ci": "^3.0.1",
"node-fetch": "^3.3.2",
"prettier": "^3.3.2",
"remix-development-tools": "^4.7.2",
"typescript": "^5.5.2",
"unified": "^11.0.5",
"unocss": "^0.61.3",

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,7 @@ import { defineConfig, type ViteDevServer } from 'vite';
import { nodePolyfills } from 'vite-plugin-node-polyfills';
import { optimizeCssModules } from 'vite-plugin-optimize-css-modules';
import tsconfigPaths from 'vite-tsconfig-paths';
import { remixDevTools } from 'remix-development-tools';
export default defineConfig((config) => {
return {
@ -15,6 +16,7 @@ export default defineConfig((config) => {
include: ['path', 'buffer'],
}),
config.mode !== 'test' && remixCloudflareDevProxy(),
remixDevTools(),
remixVitePlugin({
future: {
v3_fetcherPersist: true,