Skip to content

Commit

Permalink
Initialize T3 App, install dependencies, update readme on 7-May
Browse files Browse the repository at this point in the history
  • Loading branch information
workshop-maybe committed May 7, 2024
1 parent f4be751 commit 3e0f56b
Show file tree
Hide file tree
Showing 8 changed files with 1,914 additions and 264 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ In Mesh Living Coding Sessions in May 2024, we will build a demo front-end for [
3. Player can move a Ship

### Next Steps
- Before next meeting on 2024-05-07: initial project repo with all dependencies (James)
- On 2024-05-07: Build transactions (1) and (2)
- [x] Before next meeting on 2024-05-07: initial project repo with all dependencies (James)
- [ ] Before next meeting on 2024-05-14: Learn syntax / design pattern for compiling parameterized validator directly in Aiken
- [ ] On 2024-05-14: Build transactions (1) and (2)
- Might need to mint an Admin token before that - James will have one ready
9 changes: 8 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ await import("./src/env.js");
/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
webpack: function (config, options) {
config.experiments = {
asyncWebAssembly: true,
layers: true,
};
return config;
},

/**
* If you are using `appDir` then you must comment the below `i18n` config out.
Expand All @@ -19,4 +26,4 @@ const config = {
},
};

export default config;
export default config;

0 comments on commit 3e0f56b

Please sign in to comment.