mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:05:42 +00:00
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
|
const path = require("path");
|
||
|
const dataDirectory = path.join(process.cwd(), "data");
|
||
|
|
||
|
module.exports = {
|
||
|
env: {dataDirectory},
|
||
|
reactStrictMode: true,
|
||
|
}
|