Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemkaDev committed May 26, 2024
1 parent 6759351 commit 852d7cd
Show file tree
Hide file tree
Showing 47 changed files with 2,414 additions and 4,239 deletions.
11 changes: 11 additions & 0 deletions messages/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"Menu": {
"whatIsAplo": "What is Aplo",
"mining": "Mining",
"faq": "FAQ",
"about": "About",
"roadmap": "Roadmap",
"userGuides": "User Guides",
"donate": "Donate"
}
}
11 changes: 11 additions & 0 deletions messages/ru.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"Menu": {
"whatIsAplo": "Что такое Aplo",
"mining": "Майнинг",
"faq": "Вопросы и ответы",
"about": "О нас",
"roadmap": "Дорожная карта",
"userGuides": "Руководства пользователя",
"donate": "Пожертвовать"
}
}
11 changes: 11 additions & 0 deletions messages/ua.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"Menu": {
"whatIsAplo": "Що таке Aplo",
"mining": "Майнінг",
"faq": "Запитання та відповіді",
"about": "Про нас",
"roadmap": "Дорожня карта",
"userGuides": "Посібники користувача",
"donate": "Пожертвувати"
}
}
16 changes: 7 additions & 9 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
const repo = 'MainSite'
const assetPrefix = `/${repo}/`
const basePath = `/${repo}`
const repo = "MainSite";
const assetPrefix = `/${repo}/`;
const basePath = `/${repo}`;
const createNextIntlPlugin = require('next-intl/plugin');

const withNextIntl = createNextIntlPlugin();

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
// assetPrefix: assetPrefix,
// basePath: basePath,
}

module.exports = nextConfig

module.exports = withNextIntl(nextConfig);

// const isGithubActions = process.env.GITHUB_ACTIONS || false

Expand All @@ -32,5 +32,3 @@ module.exports = nextConfig
// }

// module.exports = nextConfig


Loading

0 comments on commit 852d7cd

Please sign in to comment.