-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
649 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<head> | ||
<meta charset="UTF-8" /> | ||
<title>スタンプにゃあ~ | StampNyaa</title> | ||
<link rel="stylesheet" href="../dist/index.css" /> | ||
<link rel="stylesheet" href="./dist/index.css" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> | ||
<link | ||
|
@@ -173,12 +173,12 @@ <h2>by MarvNC</h2> | |
<span class="material-symbols-outlined"> image </span> | ||
<span class="material-symbols-outlined"> delete </span> | ||
</div> | ||
<script type="module" src="../libs/[email protected]_lib_draggable.bundle.js"></script> | ||
<script type="module" src="./render/addStickerModal.js"></script> | ||
<script type="module" src="./render/menuBar.js"></script> | ||
<script type="module" src="./render/settingsModal.js"></script> | ||
<script type="module" src="./render/stickerRenderer.js"></script> | ||
<script type="module" src="./render/updateModal.js"></script> | ||
<script type="module" src="./renderer.js"></script> | ||
<script type="module" src="./libs/[email protected]_lib_draggable.bundle.js"></script> | ||
<script type="module" src="./src/render/addStickerModal.js"></script> | ||
<script type="module" src="./src/render/menuBar.js"></script> | ||
<script type="module" src="./src/render/settingsModal.js"></script> | ||
<script type="module" src="./src/render/stickerRenderer.js"></script> | ||
<script type="module" src="./src/render/updateModal.js"></script> | ||
<script type="module" src="./src/renderer.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,4 +129,4 @@ const sqlHandler = { | |
}, | ||
}; | ||
|
||
module.exports = sqlHandler; | ||
export default sqlHandler; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { defineConfig } from 'vite'; | ||
|
||
// https://vitejs.dev/config | ||
export default defineConfig({ | ||
resolve: { | ||
// Some libs that can run in both Web and Node.js, such as `axios`, we need to tell Vite to build them in Node.js. | ||
browserField: false, | ||
mainFields: ['module', 'jsnext:main', 'jsnext'], | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { defineConfig } from 'vite'; | ||
|
||
// https://vitejs.dev/config | ||
export default defineConfig({}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { defineConfig } from 'vite'; | ||
|
||
// https://vitejs.dev/config | ||
export default defineConfig({}); |
Oops, something went wrong.