Skip to content

Commit

Permalink
refactor: migrate Raster app from Next.js to Vite app to facilitate d…
Browse files Browse the repository at this point in the history
…eployment (#2699)
  • Loading branch information
emwp authored Aug 30, 2024
1 parent 5c08b03 commit a01dc68
Show file tree
Hide file tree
Showing 37 changed files with 3,832 additions and 1,364 deletions.
3 changes: 3 additions & 0 deletions apps/raster/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["react-app"],
}
39 changes: 0 additions & 39 deletions apps/raster/.eslintrc.js

This file was deleted.

22 changes: 5 additions & 17 deletions apps/raster/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,18 @@
# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem
.env.local
.env.development.local
.env.test.local
.env.production.local

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

dist
.env
7 changes: 0 additions & 7 deletions apps/raster/.prettier.cjs

This file was deleted.

23 changes: 23 additions & 0 deletions apps/raster/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>

<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start`.
To create a production bundle, use `npm run build`.
-->
</body>

</html>
11 changes: 0 additions & 11 deletions apps/raster/next.config.js

This file was deleted.

Loading

0 comments on commit a01dc68

Please sign in to comment.