mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 14:22:33 +01:00
* feat: initial nextjs commit * chore: general card styles changes * chore: add storybook * chore: small changes and fixes * fix: trading filter encoding * fix: add link to node * chore: set to correct version
12 lines
292 B
JavaScript
12 lines
292 B
JavaScript
module.exports = ({ config }) => {
|
|
config.module.rules.push({
|
|
test: /\.(ts|tsx)$/,
|
|
loader: require.resolve('babel-loader'),
|
|
options: {
|
|
presets: [require.resolve('babel-preset-react-app')],
|
|
},
|
|
});
|
|
|
|
config.resolve.extensions.push('.ts', '.tsx');
|
|
return config;
|
|
};
|