dinou
Version:
Dinou is a modern React 19 framework with React Server Components, Server Functions, and streaming SSR.
14 lines (12 loc) • 343 B
JavaScript
const babelConfig = {
presets: [
["@babel/preset-react", { runtime: "automatic" }],
"@babel/preset-typescript",
],
plugins: [
require.resolve("react-refresh/babel"),
"@babel/plugin-syntax-import-meta",
],
exclude: /node_modules[\\/](?!dinou|react-refresh)/,
};
module.exports.babelConfig = babelConfig;