Files
react-test/examples/material-ui-remix-ts/remix.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
374 B
JavaScript
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
/** @type {import('@remix-run/dev').AppConfig} */
module.exports = {
appDirectory: 'app',
browserBuildDirectory: 'public/build',
publicPath: '/build/',
serverBuildDirectory: 'build',
devServerPort: 8002,
// TODO: when mui has esm support, remove this (default is esm)
// check it https://github.com/mui/material-ui/issues/30671
serverModuleFormat: 'cjs',
};