Convert tests to Vitest (#4)
This commit is contained in:
18
packages/website/remix.config.js
Normal file
18
packages/website/remix.config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/* eslint-disable unicorn/prefer-module */
|
||||
/**
|
||||
* @type {import('@remix-run/dev/config').AppConfig}
|
||||
*/
|
||||
module.exports = {
|
||||
appDirectory: "app",
|
||||
assetsBuildDirectory: "public/build",
|
||||
publicPath: "/build/",
|
||||
serverBuildDirectory: "build",
|
||||
devServerPort: 8002,
|
||||
ignoredRouteFiles: [".*"],
|
||||
mdx: async () => {
|
||||
const rehypePrism = await import("rehype-prism-plus")
|
||||
return {
|
||||
rehypePlugins: [rehypePrism.default],
|
||||
}
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user