Skip to content

Commit

Permalink
main "remove deploy issues"
Browse files Browse the repository at this point in the history
  • Loading branch information
mbilawalzaman committed Jul 16, 2024
1 parent a095f19 commit b1307b2
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .codesandbox/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [],

// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {}
}
8 changes: 6 additions & 2 deletions my-app/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
// Specify a custom build output directory
distDir: "out",
// Add other Next.js configurations as needed
};

module.exports = nextConfig
module.exports = nextConfig;
1 change: 1 addition & 0 deletions my-app/tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

import type { Config } from 'tailwindcss'

const config: Config = {
Expand Down
3 changes: 3 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build]
command = "npm run build"
publish = "out"

0 comments on commit b1307b2

Please sign in to comment.