А

Size: a a a
А
А
EM
EM
P
module.exports = {
distDir: "../client",
env: {
...
}
};
▲R
module.exports = {
distDir: "../client",
env: {
...
}
};
P
▲R
🦜
module.exports = {
distDir: "../client",
env: {
...
}
};
SP
P
YZ
P
YZ
P
YZ
P
import React from "react";
import Layout from "../components/layout";
const Index: React.FunctionComponent = () => {
return (
<Layout title="Home">
<h1>Hello Next.js</h1>
</Layout>
);
};
export default Index;
EM
YZ